* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #000000;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(24, 23, 23, 0.7);
}

header nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

header nav a {
    margin: 0 20px;
    color: #ece6e6;
    text-decoration: none;
    font-size: 20px;
}

header nav a:hover {
    text-decoration: underline;
}

.logo img {
    height: 50px;
    margin: 0 20px;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    margin-top: 10rem;
}

.contact-info, .contact-form {
    flex-basis: 48%;
    background-color: rgb(200, 193, 193);
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 15px;
    padding-bottom: 3px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-info p {
    margin-top: 13px;
    margin-bottom: 70px;
    font-size: 18px;
}
.contact-info div {
    margin-top: 10px;
    margin-bottom: 1rem;
}
h1, h2 {
    color: #333;
    font-size:30px;
}

.info-item {
    margin-bottom: 1rem;
    font-size: 18px;
}

.info-item i {
    margin-right: 0.5rem;
    color: #007bff;
}

.social-icons {
    margin-top: 2rem;
}

.social-icons a {
   
    color: #333;
    font-size: 1.5rem;
    margin-right: 1rem;
}
.social-icons i {
   
    margin-top:100px;
    width:50px;
    height:50px;
}
.social-icons .tiktok_icon {
   
    margin-right: 1rem;
    height:45px;
    width: auto;
    
}
.social-icons .instagram_icon {
  
    margin-right: 1rem;
    height:45px;
    width: auto;
}
.social-icons .youtube_icon {
    margin-top: 55px;
    margin-right: 1rem;
    height:55px;
    width: auto;
    transform: translateY(8px);
    
}
.social-icons .tiktok_icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    
}
.social-icons .instagram_icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.social-icons .youtube_icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
}

input, textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    background-color: #007bff;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 22px;
}

button:hover {
    background-color: #0056b3;
}



footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 11px;
    background-color: rgba(24, 23, 23, 0.7);
    font-size: 14px;
    color: rgb(255, 255, 255);
}